-
Notifications
You must be signed in to change notification settings - Fork 7
added "os" library #12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
shit, what's going wrong? |
|
oooh... i see! i made the changes on windows, and linux does not support the library i use in os.exec. fixing that asap |
|
i believe in you aquiffoo |
|
i've made the changes @cyteon. hopefully it becomes compatible with unix-like systems now |
aquiffoo
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Testing the buginess of the gh app
Compiling modu v0.4.0 (/var/home/cyteon/Desktop/SideProjects/modu/lang)
error[E0433]: failed to resolve: could not find `windows` in `os`
--> src/packages/os.rs:4:14
|
4 | use std::os::windows::process::CommandExt;
| ^^^^^^^ could not find `windows` in `os` |
|
I'll merge and fix it myself |
|
ok, tysm |
|
Lovely. Rn im giving exams but will try as soon as possible |
added "os" library ⬇️
I decided to add an "os" library because running commands is essential.
for now it only includes
os.exec(command), that runs said command.